From bb7a5691a9686e0e1e9bf6d17bd91a193d495da6 Mon Sep 17 00:00:00 2001 From: Benjamin Otte Date: Sun, 11 May 2014 03:40:10 +0200 Subject: [PATCH] themingengine: Implement icon drawing for checks and options --- gtk/gtkthemingengine.c | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/gtk/gtkthemingengine.c b/gtk/gtkthemingengine.c index 6f428b1764..fe6a045cf7 100644 --- a/gtk/gtkthemingengine.c +++ b/gtk/gtkthemingengine.c @@ -1067,6 +1067,9 @@ gtk_theming_engine_render_check (GtkThemingEngine *engine, gint border_width; GtkThemingBackground bg; + if (render_icon_image (engine, cr, x, y, width, height)) + return; + _gtk_theming_background_init (&bg, engine, x, y, width, height, @@ -1189,6 +1192,9 @@ gtk_theming_engine_render_option (GtkThemingEngine *engine, GtkBorder border; GtkThemingBackground bg; + if (render_icon_image (engine, cr, x, y, width, height)) + return; + _gtk_theming_background_init (&bg, engine, x, y, width, height, -- 2.30.2